home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / pcroct89.arc / BATCH.ARC / DIRSORT.BAT next >
DOS Batch File  |  1990-03-21  |  621b  |  37 lines

  1. echo off
  2. rem interactive directory sort
  3. rem requires getkey.com
  4.  
  5. cls
  6. echo To sort your directory 
  7. echo by Name-------press N
  8. echo by Extension--press E
  9. echo by Date-------press D
  10. echo to Quit-------press Q
  11. getkey
  12. for %%n in (68 69 78 81 100 101 110 113) do if errorlevel %%n goto key%%n
  13.  
  14. :key78
  15. :key110
  16. echo Sorting directory by name...
  17. dir %1|find "-"|sort|more
  18. goto key113
  19.  
  20. :key69
  21. :key101
  22. echo Sorting directory by extension...
  23. dir %1|find "-"|sort/+10|more
  24. goto key113
  25.  
  26. :key68
  27. :key100
  28. echo Sorting directory by date (mo. & day)...
  29. dir %1|find "-"|sort/+24|more
  30.  
  31. :key81
  32. :key113
  33.  
  34.  
  35.  
  36.  
  37.